home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr05 / wet101.zip / WET.H < prev    next >
Text File  |  1994-05-14  |  1KB  |  19 lines

  1.  
  2. /* functions provided by WETSTD.DLL */
  3. VOID FAR PASCAL _export EncryptXORBlock(unsigned char far *block, int block_length, unsigned char far *code_key);
  4. VOID FAR PASCAL _export EncryptTranspositionBlock(unsigned char far *block, int block_length, unsigned char far *code_key);
  5. VOID FAR PASCAL _export EncryptSubstitutionBlock(unsigned char far *block, int block_length, unsigned char far *code_key);
  6. unsigned int FAR PASCAL _export CRCBlock(unsigned char far *block,int block_length);
  7. unsigned int FAR PASCAL _export GetVersionWETSTD(void);
  8.  
  9. /* functions provided by WETDES.DLL */
  10. VOID FAR PASCAL _export DESKeyloadEncrypt(unsigned char far *key);
  11. VOID FAR PASCAL _export DESKeyloadDecrypt(unsigned char far *key);
  12. VOID FAR PASCAL _export CryptDES(unsigned char far *datablock);
  13. VOID FAR PASCAL _export EncryptDESBlock(unsigned char far *block,int block_length);
  14. VOID FAR PASCAL _export DecryptDESBlock(unsigned char far *block,int block_length);
  15. VOID FAR PASCAL _export EncryptDESBlockCBC(unsigned char far *block,int block_length);
  16. VOID FAR PASCAL _export DecryptDESBlockCBC(unsigned char far *block,int block_length);
  17. unsigned int FAR PASCAL _export GetVersionWETDES(void);
  18.  
  19.